home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / greprefs / all.js next >
Encoding:
Text File  |  2004-10-04  |  48.4 KB  |  1,045 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  * Benjamin Smedberg <bsmedberg@covad.net>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* The prefs in this file are shipped with the GRE and should apply to all
  40.  * embedding situations. Application-specific preferences belong somewhere else,
  41.  * for example xpfe/bootstrap/browser-prefs.js
  42.  *
  43.  * Platform-specific #ifdefs at the end of this file override the generic
  44.  * entries at the top.
  45.  */
  46.  
  47. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  48. //  The first character after a period must be alphabetic.
  49.  
  50. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  51. pref("keyword.enabled", false);
  52. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  53. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  54.  
  55. pref("general.config.obscure_value", 13); // for MCD .cfg files
  56.  
  57. pref("backups.number_of_prefs_copies", 1);
  58.  
  59. pref("browser.cache.disk.enable",           true);
  60. pref("browser.cache.disk.capacity",         51200);
  61. pref("browser.cache.memory.enable",         true);
  62. //pref("browser.cache.memory.capacity",     -1);
  63. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  64. pref("browser.cache.disk_cache_ssl",        false);
  65. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  66. pref("browser.cache.check_doc_frequency",   3);
  67.  
  68. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  69. pref("browser.display.use_document_colors", true);
  70. pref("browser.display.use_system_colors",   false);
  71. pref("browser.display.foreground_color",    "#000000");
  72. pref("browser.display.background_color",    "#FFFFFF");
  73. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  74. // 0 = no external leading, 
  75. // 1 = use external leading only when font provides, 
  76. // 2 = add extra leading both internal leading and external leading are zero
  77. pref("browser.display.normal_lineheight_calc_control", 2);
  78. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  79. pref("browser.anchor_color",                "#0000EE");
  80. pref("browser.active_color",                "#EE0000");
  81. pref("browser.visited_color",               "#551A8B");
  82. pref("browser.underline_anchors",           true);
  83. pref("browser.blink_allowed",               true);
  84. pref("browser.enable_automatic_image_resizing", false);
  85.  
  86. pref("browser.display.use_focus_colors",    false);
  87. pref("browser.display.focus_background_color", "#117722");
  88. pref("browser.display.focus_text_color",     "#ffffff");
  89. pref("browser.display.focus_ring_width",     1);
  90. pref("browser.display.focus_ring_on_anything", false);
  91.  
  92. pref("browser.helperApps.alwaysAsk.force",  false);
  93. pref("browser.helperApps.neverAsk.saveToDisk", "");
  94. pref("browser.helperApps.neverAsk.openFile", "");
  95.  
  96. // xxxbsmedberg: where should prefs for the toolkit go?
  97. pref("browser.chrome.toolbar_tips",         true);
  98. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  99. pref("browser.chrome.toolbar_style",        2);
  100.  
  101.  
  102. pref("accessibility.browsewithcaret", false);
  103. pref("accessibility.warn_on_browsewithcaret", true);
  104. // Tab focus model bit field:
  105. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  106. // Most users will want 1, 3, or 7.
  107. pref("accessibility.tabfocus", 7);
  108. pref("accessibility.usetexttospeech", "");
  109. pref("accessibility.usebrailledisplay", "");
  110. pref("accessibility.accesskeycausesactivation", true);
  111.  
  112. // Type Ahead Find
  113. pref("accessibility.typeaheadfind", true);
  114. pref("accessibility.typeaheadfind.autostart", true);
  115. pref("accessibility.typeaheadfind.linksonly", true);
  116. pref("accessibility.typeaheadfind.startlinksonly", false);
  117. pref("accessibility.typeaheadfind.timeout", 4000);
  118. pref("accessibility.typeaheadfind.enabletimeout", true);
  119. pref("accessibility.typeaheadfind.soundURL", "default");
  120. pref("accessibility.typeaheadfind.enablesound", true);
  121.  
  122. pref("browser.history_expire_days", 9);
  123.  
  124. // loading and rendering of framesets and iframes
  125. pref("browser.frames.enabled", true);
  126.  
  127. // form submission
  128. pref("browser.forms.submit.backwards_compatible", true);
  129.  
  130. // xxxbsmedberg more toolkit prefs?
  131. // Tab browser preferences.
  132. pref("browser.tabs.autoHide", true);
  133. pref("browser.tabs.forceHide", false);
  134. pref("browser.tabs.loadInBackground", false);
  135. pref("browser.tabs.opentabfor.middleclick", false);
  136. pref("browser.tabs.opentabfor.urlbar", false);
  137. pref("browser.tabs.opentabfor.windowopen", false);
  138. pref("browser.tabs.opentabfor.bookmarks", false);
  139. pref("browser.tabs.warnOnClose", true);
  140. // 0 = append, 1 = replace
  141. pref("browser.tabs.loadGroup", 1);
  142.  
  143. // lets new tab/window load something different than first window
  144. // -1 - use navigator startup preference
  145. //  0 - loads blank page
  146. //  1 - loads home page
  147. //  2 - loads last page visited
  148. pref("browser.tabs.loadOnNewTab", 0);
  149. pref("browser.windows.loadOnNewWindow", 1);
  150.  
  151. // view source
  152. pref("view_source.syntax_highlight", true);
  153. pref("view_source.wrap_long_lines", false);
  154.  
  155. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  156. pref("nglayout.events.dispatchLeftClickOnly", true);
  157.  
  158. // whether or not to use xbl form controls
  159. pref("nglayout.debug.enable_xbl_forms", false);
  160.  
  161. // size of scrollbar snapping region
  162. pref("slider.snapMultiplier", 6);
  163.  
  164. // option to choose plug-in finder
  165. pref("application.use_ns_plugin_finder", false);
  166.  
  167. // URI fixup prefs
  168. pref("browser.fixup.alternate.enabled", true);
  169. pref("browser.fixup.alternate.prefix", "www.");
  170. pref("browser.fixup.alternate.suffix", ".com");
  171.  
  172. // Print header customization
  173. // Use the following codes:
  174. // &T - Title
  175. // &U - Document URL
  176. // &D - Date/Time
  177. // &P - Page Number
  178. // &PT - Page Number "of" Page total
  179. // Set each header to a string containing zero or one of these codes
  180. // and the code will be replaced in that string by the corresponding data
  181. pref("print.print_headerleft", "&T");
  182. pref("print.print_headercenter", "");
  183. pref("print.print_headerright", "&U");
  184. pref("print.print_footerleft", "&PT");
  185. pref("print.print_footercenter", "");
  186. pref("print.print_footerright", "&D");
  187. pref("print.show_print_progress", true);
  188.  
  189. // xxxbsmedberg: more toolkit prefs
  190.  
  191. // When this is set to false each window has its own PrintSettings
  192. // and a chnage in one window does not affect the others
  193. pref("print.use_global_printsettings", true);
  194.  
  195. // Use the native dialog or the XP dialog?
  196. pref("print.use_native_print_dialog", false);
  197.  
  198. // Save the Printings after each print job
  199. pref("print.save_print_settings", true);
  200.  
  201. pref("print.whileInPrintPreview", true);
  202.  
  203. // Cache old Presentation when going into Print Preview
  204. pref("print.always_cache_old_pres", false);
  205.  
  206. // Enables you to specify the gap from the edge of the paper to the margin
  207. // this is used by both Printing and Print Preview
  208. pref("print.print_edge_top", 0); // 1/100 of an inch
  209. pref("print.print_edge_left", 0); // 1/100 of an inch
  210. pref("print.print_edge_right", 0); // 1/100 of an inch
  211. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  212.  
  213.  
  214. // Prefs used by libeditor. Prefs specific to seamonkey composer
  215. // belong in mozilla/editor/ui/composer.js
  216.  
  217. pref("editor.use_custom_colors", false);
  218. pref("editor.htmlWrapColumn", 72);
  219. pref("editor.singleLine.pasteNewlines",     1);
  220. pref("editor.quotesPreformatted",            false);
  221. pref("editor.use_css",                       true);
  222. pref("editor.css.default_length_unit",       "px");
  223. pref("editor.resizing.preserve_ratio",       true);
  224. pref("editor.positioning.offset",            0);
  225.  
  226.  
  227. // Default Capability Preferences: Security-Critical! 
  228. // Editing these may create a security risk - be sure you know what you're doing
  229. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  230.  
  231. pref("capability.policy.default_policynames", "mailnews");
  232.  
  233. pref("capability.policy.default.DOMException.code", "allAccess");
  234. pref("capability.policy.default.DOMException.message", "allAccess");
  235. pref("capability.policy.default.DOMException.name", "allAccess");
  236. pref("capability.policy.default.DOMException.result", "allAccess");
  237. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  238.  
  239. pref("capability.policy.default.History.back.get", "allAccess");
  240. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  241. pref("capability.policy.default.History.forward.get", "allAccess");
  242. pref("capability.policy.default.History.go.get", "allAccess");
  243. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  244. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  245. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  246. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  247.  
  248. pref("capability.policy.default.HTMLDocument.close.get", "allAccess");
  249. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  250.  
  251. pref("capability.policy.default.Location.hash.set", "allAccess");
  252. pref("capability.policy.default.Location.href.set", "allAccess");
  253. pref("capability.policy.default.Location.reload.get", "allAccess");
  254. pref("capability.policy.default.Location.replace.get", "allAccess");
  255.  
  256. pref("capability.policy.default.Navigator.preference", "allAccess");
  257. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  258. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  259.  
  260. pref("capability.policy.default.Window.blur.get", "allAccess");
  261. pref("capability.policy.default.Window.close.get", "allAccess");
  262. pref("capability.policy.default.Window.closed", "allAccess");
  263. pref("capability.policy.default.Window.Components", "allAccess");
  264. pref("capability.policy.default.Window.document", "allAccess");
  265. pref("capability.policy.default.Window.focus.get", "allAccess");
  266. pref("capability.policy.default.Window.frames", "allAccess");
  267. pref("capability.policy.default.Window.history", "allAccess");
  268. pref("capability.policy.default.Window.length", "allAccess");
  269. pref("capability.policy.default.Window.location", "allAccess");
  270. pref("capability.policy.default.Window.opener", "allAccess");
  271. pref("capability.policy.default.Window.parent", "allAccess");
  272. pref("capability.policy.default.Window.self", "allAccess");
  273. pref("capability.policy.default.Window.top", "allAccess");
  274. pref("capability.policy.default.Window.window", "allAccess");
  275.  
  276. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  277. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  278.  
  279. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  280. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  281. pref("capability.policy.mailnews.*.data.get", "noAccess");
  282. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  283. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  284. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  285. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  286. pref("capability.policy.mailnews.*.host.get", "noAccess");
  287. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  288. pref("capability.policy.mailnews.*.href.get", "noAccess");
  289. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  290. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  291. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  292. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  293. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  294. pref("capability.policy.mailnews.*.src.get", "noAccess");
  295. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  296. pref("capability.policy.mailnews.*.text.get", "noAccess");
  297. pref("capability.policy.mailnews.*.title.get", "noAccess");
  298. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  299. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  300. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  301. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  302. pref("capability.policy.mailnews.Location.toString", "noAccess");
  303. pref("capability.policy.mailnews.Range.toString", "noAccess");
  304. pref("capability.policy.mailnews.Window.blur", "noAccess");
  305. pref("capability.policy.mailnews.Window.focus", "noAccess");
  306. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  307. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  308. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  309. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  310. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  311. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  312. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  313. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  314. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  315. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  316. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  317. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  318. pref("capability.policy.mailnews.document.load", "noAccess");
  319. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  320. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  321. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  322. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  323. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  324. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  325. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  326. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  327. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  328. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  329. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  330. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  331. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  332. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  333. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  334. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  335. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  336. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  337. pref("capability.policy.mailnews.DOMParser,parseFromString", "noAccess");
  338. pref("capability.policy.mailnews.DOMParser,parseFromStream", "noAccess");
  339. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  340. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  341. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  342. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  343. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  344. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  345. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  346. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  347. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  348. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  349. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  350. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  351. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  352. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  353. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  354. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  355. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  356. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  357. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  358. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  359. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  360. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  361. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  362. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  363. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  364. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  365. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  366. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  367. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  368. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  369. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  370. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  371. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  372. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  373. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  374. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  375. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  376. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  377. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  378. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  379. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  380. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  381. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  382. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  383. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  384.  
  385. // XMLExtras
  386. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  387. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  388.  
  389. // Clipboard
  390. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  391. pref("capability.policy.default.Clipboard.paste", "noAccess");
  392.  
  393. // Scripts & Windows prefs
  394. pref("browser.block.target_new_window",     false);
  395. pref("dom.disable_image_src_set",           false);
  396. pref("dom.disable_window_flip",             false);
  397. pref("dom.disable_window_move_resize",      false);
  398. pref("dom.disable_window_status_change",    false);
  399.  
  400. pref("dom.disable_window_open_feature.titlebar",    false);
  401. pref("dom.disable_window_open_feature.close",       false);
  402. pref("dom.disable_window_open_feature.toolbar",     false);
  403. pref("dom.disable_window_open_feature.location",    false);
  404. pref("dom.disable_window_open_feature.directories", false);
  405. pref("dom.disable_window_open_feature.personalbar", false);
  406. pref("dom.disable_window_open_feature.menubar",     false);
  407. pref("dom.disable_window_open_feature.scrollbars",  false);
  408. pref("dom.disable_window_open_feature.resizable",   false);
  409. pref("dom.disable_window_open_feature.minimizable", false);
  410. pref("dom.disable_window_open_feature.status",      false);
  411.  
  412. pref("dom.allow_scripts_to_close_windows",          false);
  413.  
  414. pref("dom.disable_open_during_load",                false);
  415. pref("dom.popup_maximum",                           20);
  416. pref("dom.popup_allowed_events", "change click dblclick reset submit");
  417.  
  418. pref("dom.event.contextmenu.enabled",       true);
  419.  
  420. pref("javascript.enabled",                  true);
  421. pref("javascript.allow.mailnews",           false);
  422. pref("javascript.options.strict",           false);
  423.  
  424. // advanced prefs
  425. pref("advanced.always_load_images",         true);
  426. pref("security.enable_java",                true);
  427. pref("advanced.mailftp",                    false);
  428. pref("image.animation_mode",                "normal");
  429.  
  430. // If there is ever a security firedrill that requires
  431. // us to block certian ports global, this is the pref 
  432. // to use.  Is is a comma delimited list of port numbers
  433. // for example:
  434. //   pref("network.security.ports.banned", "1,2,3,4,5");
  435. // prevents necko connecting to ports 1-5 unless the protocol
  436. // overrides.
  437.  
  438. // Prevent using external protocol handlers for these schemes
  439. pref("network.protocol-handler.external.hcp", false);
  440. pref("network.protocol-handler.external.vbscript", false);
  441. pref("network.protocol-handler.external.javascript", false);
  442. pref("network.protocol-handler.external.ms-help", false);
  443. pref("network.protocol-handler.external.shell", false);
  444. pref("network.protocol-handler.external.vnd.ms.radio", false);
  445. pref("network.protocol-handler.external.help", false);
  446. pref("network.protocol-handler.external.disk", false);
  447. pref("network.protocol-handler.external.disks", false);
  448. pref("network.protocol-handler.external.afp", false);
  449.  
  450. // An exposed protocol handler is one that can be used in all contexts.  A
  451. // non-exposed protocol handler is one that can only be used internally by the
  452. // application.  For example, a non-exposed protocol would not be loaded by the
  453. // application in response to a link click or a X-remote openURL command.
  454. // Instead, it would be deferred to the system's external protocol handler.
  455. // Only internal/built-in protocol handlers can be marked as exposed.
  456.  
  457. // This pref controls the default settings.  Per protocol settings can be used
  458. // to override this value.
  459. pref("network.protocol-handler.expose-all", true);
  460.  
  461. // Example: make IMAP an exposed protocol
  462. // pref("network.protocol-handler.expose.imap", true);
  463.  
  464. pref("network.hosts.smtp_server",           "mail");
  465. pref("network.hosts.pop_server",            "mail");
  466.  
  467. // <http>
  468. pref("network.http.version", "1.1");      // default
  469. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  470. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  471. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  472. // some older 1.0 servers:
  473.  
  474. pref("network.http.proxy.version", "1.1");    // default
  475. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  476.                                               // (required if using junkbuster proxy)
  477.  
  478. // enable caching of http documents
  479. pref("network.http.use-cache", true);
  480.  
  481. // this preference can be set to override the socket type used for normal
  482. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  483. pref("network.http.default-socket-type", "");
  484.  
  485. pref("network.http.keep-alive", true); // set it to false in case of problems
  486. pref("network.http.proxy.keep-alive", true);
  487. pref("network.http.keep-alive.timeout", 300);
  488.  
  489. // limit the absolute number of http connections.
  490. pref("network.http.max-connections", 24);
  491.  
  492. // limit the absolute number of http connections that can be established per
  493. // host.  if a http proxy server is enabled, then the "server" is the proxy
  494. // server.  Otherwise, "server" is the http origin server.
  495. pref("network.http.max-connections-per-server", 8);
  496.  
  497. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  498. // a new connection will only be attempted if the number of active persistent
  499. // connections to the server is less then max-persistent-connections-per-server.
  500. pref("network.http.max-persistent-connections-per-server", 2);
  501.  
  502. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  503. // new connection will only be attempted if the number of active persistent
  504. // connections to the proxy is less then max-persistent-connections-per-proxy.
  505. pref("network.http.max-persistent-connections-per-proxy", 4);
  506.  
  507. // amount of time (in seconds) to suspend pending requests, before spawning a
  508. // new connection, once the limit on the number of persistent connections per
  509. // host has been reached.  however, a new connection will not be created if
  510. // max-connections or max-connections-per-server has also been reached.
  511. pref("network.http.request.max-start-delay", 10);
  512.  
  513. // http specific network timeouts (XXX currently unused)
  514. pref("network.http.connect.timeout",  30);    // in seconds
  515. pref("network.http.request.timeout", 120);    // in seconds
  516.  
  517. // Headers
  518. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  519. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  520.  
  521. // Controls whether we send HTTPS referres to other HTTPS sites.
  522. // By default this is enabled for compatibility (see bug 141641)
  523. pref("network.http.sendSecureXSiteReferrer", true);
  524.  
  525. // Maximum number of consecutive redirects before aborting.
  526. pref("network.http.redirection-limit", 20);
  527.  
  528. // Enable http compression: comment this out in case of problems with 1.1
  529. // NOTE: support for "compress" has been disabled per bug 196406.
  530. pref("network.http.accept-encoding" ,"gzip,deflate");
  531.  
  532. pref("network.http.pipelining"      , false);
  533. pref("network.http.proxy.pipelining", false);
  534.  
  535. // Max number of requests in the pipeline
  536. pref("network.http.pipelining.maxrequests" , 4);
  537.  
  538. // </http>
  539.  
  540. // This preference controls whether or not internationalized domain names (IDN)
  541. // are handled.  IDN requires a nsIIDNService implementation.
  542. pref("network.enableIDN", true);
  543.  
  544. // This preference specifies a list of domains for which DNS lookups will be
  545. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  546. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  547. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  548.  
  549. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  550. pref("network.dns.disableIPv6", false);
  551.  
  552. // This preference controls whether or not URLs with UTF-8 characters are
  553. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  554. pref("network.standard-url.escape-utf8", true);
  555.  
  556. // This preference controls whether or not URLs are always encoded and sent as
  557. // UTF-8.
  558. pref("network.standard-url.encode-utf8", false);
  559.  
  560. // Idle timeout for ftp control connections - 5 minute default
  561. pref("network.ftp.idleConnectionTimeout", 300);
  562.  
  563. // directory listing format - constants are defined in nsIDirectoryListing.idl
  564. // Do not set this to 0...
  565. pref("network.dir.format", 2);
  566.  
  567. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  568. pref("network.prefetch-next", true);
  569.  
  570.  
  571. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  572. // which provides transparent Kerberos authentication using the SPNEGO protocol.
  573. // Each pref is a comma-separated list of keys, where each key has the format:
  574. //   [scheme "://"] [host [":" port]]
  575. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  576.  
  577. // This list controls which URIs can support the negotiate auth protocol.  This
  578. // list should be limited to the servers you know you'll need to login to.
  579. pref("network.negotiate-auth.trusted-uris", "https://");
  580. // This list controls which URIs can support delegation.
  581. pref("network.negotiate-auth.delegation-uris", "");
  582.  
  583.  
  584. // sspitzer:  change this back to "news" when we get to beta.
  585. // for now, set this to news.mozilla.org because you can only
  586. // post to the server specified by this pref.
  587. pref("network.hosts.nntp_server",           "news.mozilla.org");
  588.  
  589. pref("network.image.imageBehavior",         0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  590. pref("network.image.warnAboutImages",       false);
  591. pref("network.proxy.autoconfig_url",        "");
  592. pref("network.proxy.type",                  0);
  593. pref("network.proxy.ftp",                   "");
  594. pref("network.proxy.ftp_port",              0);
  595. pref("network.proxy.gopher",                "");
  596. pref("network.proxy.gopher_port",           0);
  597. pref("network.proxy.http",                  "");
  598. pref("network.proxy.http_port",             0);
  599. pref("network.proxy.ssl",                   "");
  600. pref("network.proxy.ssl_port",              0);
  601. pref("network.proxy.socks",                 "");
  602. pref("network.proxy.socks_port",            0);
  603. pref("network.proxy.socks_version",         5);
  604. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  605. pref("network.online",                      true); //online/offline
  606. pref("network.cookie.cookieBehavior",       3); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  607. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  608. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  609. pref("network.cookie.alwaysAcceptSessionCookies", false);
  610. pref("network.cookie.prefsMigrated",        false);
  611. pref("network.cookie.lifetime.days",        90);
  612.  
  613. // The following default value is for p3p medium mode.
  614. // See extensions/cookie/resources/content/p3p.xul for the definitions of low/medium/hi
  615. pref("network.cookie.p3p",                  "ffffaaaa");
  616. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  617.  
  618. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  619. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  620. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  621.  
  622. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  623. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  624. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  625. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  626. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  627. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  628. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  629. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  630. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  631. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  632. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  633. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  634. pref("intl.charsetmenu.browser.cache",      "");
  635. pref("intl.charsetmenu.mailview.cache",     "");
  636. pref("intl.charsetmenu.composer.cache",     "");
  637. pref("intl.charsetmenu.browser.cache.size", 5);
  638. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  639. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  640. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  641. pref("intl.locale.matchOS",                 false);
  642. // fallback charset list for Unicode conversion (converting from Unicode)
  643. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  644. // for ISO-8859-1
  645. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  646. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  647.  
  648. pref("images.dither", "auto");
  649. pref("security.directory",              "");
  650.  
  651. pref("signed.applets.codebase_principal_support", false);
  652. pref("security.checkloaduri", true);
  653. pref("security.xpconnect.plugin.unrestricted", true);
  654. // security-sensitive dialogs should delay button enabling. In milliseconds.
  655. pref("security.dialog_enable_delay", 2000);
  656.  
  657. // Modifier key prefs: default to Windows settings,
  658. // menu access key = alt, accelerator key = control.
  659. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  660. pref("ui.key.accelKey", 17);
  661. pref("ui.key.generalAccessKey", 18);
  662. pref("ui.key.menuAccessKey", 18);
  663.  
  664. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  665. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  666.  
  667. // Middle-mouse handling
  668. pref("middlemouse.paste", false);
  669. pref("middlemouse.openNewWindow", true);
  670. pref("middlemouse.contentLoadURL", false);
  671. pref("middlemouse.scrollbarPosition", false);
  672.  
  673. // Clipboard behavior
  674. pref("clipboard.autocopy", false);
  675.  
  676. // 0=lines, 1=pages, 2=history , 3=text size
  677. pref("mousewheel.withnokey.action",0);
  678. pref("mousewheel.withnokey.numlines",1);    
  679. pref("mousewheel.withnokey.sysnumlines",true);
  680. pref("mousewheel.withcontrolkey.action",0);
  681. pref("mousewheel.withcontrolkey.numlines",1);
  682. pref("mousewheel.withcontrolkey.sysnumlines",true);
  683. pref("mousewheel.withshiftkey.action",0);
  684. pref("mousewheel.withshiftkey.numlines",1);
  685. pref("mousewheel.withshiftkey.sysnumlines",true);
  686. pref("mousewheel.withaltkey.action",2);
  687. pref("mousewheel.withaltkey.numlines",1);
  688. pref("mousewheel.withaltkey.sysnumlines",false);
  689. pref("mousewheel.horizscroll.withnokey.action",2);
  690. pref("mousewheel.horizscroll.withnokey.numlines",-1);
  691. pref("mousewheel.horizscroll.withnokey.sysnumlines",false);
  692. pref("mousewheel.horizscroll.withcontrolkey.action",2);
  693. pref("mousewheel.horizscroll.withcontrolkey.numlines",-1);
  694. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",false);
  695. pref("mousewheel.horizscroll.withshiftkey.action",2);
  696. pref("mousewheel.horizscroll.withshiftkey.numlines",-1);
  697. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",false);
  698. pref("mousewheel.horizscroll.withaltkey.action",2);
  699. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  700. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  701.  
  702. pref("profile.confirm_automigration",true);
  703. // profile.migration_behavior determines how the profiles root is set
  704. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  705. // 1 - create one based on the NS4.x profile root
  706. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  707. pref("profile.migration_behavior",0);
  708. pref("profile.migration_directory", "");
  709.  
  710. // the amount of time (in seconds) that must elapse
  711. // before we think your mozilla profile is defunct
  712. // and you'd benefit from re-migrating from 4.x
  713. // see bug #137886 for more details
  714. //
  715. // if -1, we never think your profile is defunct
  716. // and users will never see the remigrate UI.
  717. pref("profile.seconds_until_defunct", -1);
  718. // We can show it anytime from menus
  719. pref("profile.manage_only_at_launch", false);
  720.  
  721. pref("prefs.converted-to-utf8",false);
  722.  
  723. // --------------------------------------------------
  724. // IBMBIDI 
  725. // --------------------------------------------------
  726. //
  727. // ------------------
  728. //  Text Direction
  729. // ------------------
  730. // 1 = directionLTRBidi *
  731. // 2 = directionRTLBidi
  732. pref("bidi.direction", 1);
  733. // ------------------
  734. //  Text Type
  735. // ------------------
  736. // 1 = charsettexttypeBidi *
  737. // 2 = logicaltexttypeBidi
  738. // 3 = visualtexttypeBidi
  739. pref("bidi.texttype", 1);
  740. // ------------------
  741. //  Controls Text Mode
  742. // ------------------
  743. // 1 = logicalcontrolstextmodeBidiCmd
  744. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  745. // 3 = containercontrolstextmodeBidi *
  746. pref("bidi.controlstextmode", 1);
  747. // ------------------
  748. //  Numeral Style
  749. // ------------------
  750. // 0 = nominalnumeralBidi *
  751. // 1 = regularcontextnumeralBidi
  752. // 2 = hindicontextnumeralBidi
  753. // 3 = arabicnumeralBidi
  754. // 4 = hindinumeralBidi
  755. pref("bidi.numeral", 0);
  756. // ------------------
  757. //  Support Mode
  758. // ------------------
  759. // 1 = mozillaBidisupport *
  760. // 2 = OsBidisupport
  761. // 3 = disableBidisupport
  762. pref("bidi.support", 1);
  763. // ------------------
  764. //  Charset Mode
  765. // ------------------
  766. // 1 = doccharactersetBidi *
  767. // 2 = defaultcharactersetBidi
  768. pref("bidi.characterset", 1);
  769.  
  770.  
  771. // used for double-click word selection behavior. Win will override.
  772. pref("layout.word_select.eat_space_to_next_word", false);
  773. pref("layout.word_select.stop_at_punctuation", true);
  774.  
  775. // pref to force frames to be resizable
  776. pref("layout.frames.force_resizability", false);
  777.  
  778. // pref to permit users to make verified SOAP calls by default
  779. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  780.  
  781. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  782. pref("plugin.override_internal_types", false);
  783. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  784.  
  785. // See bug 136985.  Gives embedders a pref to hook into to show
  786. // a popup blocker if they choose.
  787. pref("browser.popups.showPopupBlocker", true);
  788.  
  789. // Pref to control whether the viewmanager code does double-buffering or not
  790. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  791. pref("viewmanager.do_doublebuffering", true);
  792.  
  793. // which files will be selected for roaming by default.
  794. // See sroaming/content/prefs/all.js
  795. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  796. // display some general warning to the user about making backups, security etc.
  797. pref("roaming.showInitialWarning", true);
  798.  
  799. // whether use prefs from system
  800. pref("config.use_system_prefs", false);
  801.  
  802. // if the system has enabled accessibility
  803. pref("config.use_system_prefs.accessibility", false);
  804.  
  805. /*
  806.  * What are the entities that you want Mozilla to save using mnemonic
  807.  * names rather than numeric codes? E.g. If set, we'll output  
  808.  * otherwise, we may output 0xa0 depending on the charset.
  809.  *
  810.  * "none"   : don't use any entity names; only use numeric codes.
  811.  * "basic"  : use entity names just for   & < > " for 
  812.  *            interoperability/exchange with products that don't support more
  813.  *            than that.
  814.  * "latin1" : use entity names for 8bit accented letters and other special
  815.  *            symbols between 128 and 255.
  816.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  817.  *            other special markup symbols as defined in HTML4.
  818.  */
  819. //pref("editor.encode_entity",                 "html");
  820.  
  821. pref("editor.resizing.preserve_ratio",       true);
  822. pref("editor.positioning.offset",            0);
  823.  
  824. pref("dom.max_script_run_time", 5);
  825.  
  826. pref("font.name.serif.ar", "Times New Roman");
  827. pref("font.name.sans-serif.ar", "Arial");
  828. pref("font.name.monospace.ar", "Courier New");
  829. pref("font.name.cursive.ar", "Comic Sans MS");
  830.  
  831. pref("font.name.serif.el", "Times New Roman");
  832. pref("font.name.sans-serif.el", "Arial");
  833. pref("font.name.monospace.el", "Courier New");
  834. pref("font.name.cursive.el", "Comic Sans MS");
  835.  
  836. pref("font.name.serif.he", "Narkisim");
  837. pref("font.name.sans-serif.he", "Arial");
  838. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  839. pref("font.name.cursive.he", "Gutmann Yad");
  840. pref("font.name-list.serif.he", "Narkisim, David");
  841. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  842. pref("font.name-list.cursive.he", "Gutmann Yad, Ktav, Arial");
  843.  
  844. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  845. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  846. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  847. // (see bug 227815)
  848.  
  849. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  850. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  851. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  852. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  853. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  854. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  855.  
  856. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  857. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  858. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  859. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  860.  
  861. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  862. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  863. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  864. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  865.  
  866. pref("font.name.serif.th", "Times New Roman");
  867. pref("font.name.sans-serif.th", "Arial");
  868. pref("font.name.monospace.th", "Courier New");
  869. pref("font.name.cursive.th", "Comic Sans MS");
  870.  
  871. pref("font.name.serif.tr", "Times New Roman");
  872. pref("font.name.sans-serif.tr", "Arial");
  873. pref("font.name.monospace.tr", "Courier New");
  874. pref("font.name.cursive.tr", "Comic Sans MS");
  875.  
  876. pref("font.name.serif.x-baltic", "Times New Roman");
  877. pref("font.name.sans-serif.x-baltic", "Arial");
  878. pref("font.name.monospace.x-baltic", "Courier New");
  879. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  880.  
  881. pref("font.name.serif.x-central-euro", "Times New Roman");
  882. pref("font.name.sans-serif.x-central-euro", "Arial");
  883. pref("font.name.monospace.x-central-euro", "Courier New");
  884. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  885.  
  886. pref("font.name.serif.x-cyrillic", "Times New Roman");
  887. pref("font.name.sans-serif.x-cyrillic", "Arial");
  888. pref("font.name.monospace.x-cyrillic", "Courier New");
  889. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  890.  
  891. pref("font.name.serif.x-unicode", "Times New Roman");
  892. pref("font.name.sans-serif.x-unicode", "Arial");
  893. pref("font.name.monospace.x-unicode", "Courier New");
  894. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  895.  
  896. pref("font.name.serif.x-western", "Times New Roman");
  897. pref("font.name.sans-serif.x-western", "Arial");
  898. pref("font.name.monospace.x-western", "Courier New");
  899. pref("font.name.cursive.x-western", "Comic Sans MS");
  900.  
  901. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  902. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  903. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  904. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  905. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  906. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  907.  
  908. pref("font.name.serif.zh-TW", "τ┤░µÿÄΘ½ö"); // "MingLiU" 
  909. pref("font.name.sans-serif.zh-TW", "τ┤░µÿÄΘ½ö"); // "MingLiU" 
  910. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö"); // "MingLiU" 
  911. pref("font.name-list.serif.zh-TW", "MingLiU, τ┤░µÿÄΘ½ö"); 
  912. pref("font.name-list.sans-serif.zh-TW", "MingLiU, τ┤░µÿÄΘ½ö");
  913. pref("font.name-list.monospace.zh-TW", "MingLiU, τ┤░µÿÄΘ½ö");
  914.  
  915. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs
  916. pref("font.name.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  917. pref("font.name.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  918. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  919. pref("font.name-list.serif.zh-HK", "MingLiu_HKSCS, τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  920. pref("font.name-list.sans-serif.zh-HK", "MingLiU_HKSCS, τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  921. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  922.  
  923. pref("font.name.serif.x-devanagari", "Mangal");
  924. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  925. pref("font.name.monospace.x-devanagari", "Mangal");
  926. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  927. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  928.  
  929. pref("font.name.serif.x-tamil", "Latha");
  930. pref("font.name.sans-serif.x-tamil", "Code2000");
  931. pref("font.name.monospace.x-tamil", "Latha");
  932. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  933. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  934.  
  935. pref("font.default", "serif");
  936. pref("font.size.variable.ar", 16);
  937. pref("font.size.fixed.ar", 13);
  938.  
  939. pref("font.size.variable.el", 16);
  940. pref("font.size.fixed.el", 13);
  941.  
  942. pref("font.size.variable.he", 16);
  943. pref("font.size.fixed.he", 13);
  944.  
  945. pref("font.size.variable.ja", 16);
  946. pref("font.size.fixed.ja", 16);
  947.  
  948. pref("font.size.variable.ko", 16);
  949. pref("font.size.fixed.ko", 16);
  950.  
  951. pref("font.size.variable.th", 16);
  952. pref("font.size.fixed.th", 13);
  953.  
  954. pref("font.size.variable.tr", 16);
  955. pref("font.size.fixed.tr", 13);
  956.  
  957. pref("font.size.variable.x-baltic", 16);
  958. pref("font.size.fixed.x-baltic", 13);
  959.  
  960. pref("font.size.variable.x-central-euro", 16);
  961. pref("font.size.fixed.x-central-euro", 13);
  962.  
  963. pref("font.size.variable.x-cyrillic", 16);
  964. pref("font.size.fixed.x-cyrillic", 13);
  965.  
  966. pref("font.size.variable.x-devanagari", 16);
  967. pref("font.size.fixed.x-devanagari", 13);
  968.  
  969. pref("font.size.variable.x-tamil", 16);
  970. pref("font.size.fixed.x-tamil", 13);
  971.  
  972. pref("font.size.variable.x-unicode", 16);
  973. pref("font.size.fixed.x-unicode", 13);
  974.  
  975. pref("font.size.variable.x-western", 16);
  976. pref("font.size.fixed.x-western", 13);
  977.  
  978. pref("font.size.variable.zh-CN", 16);
  979. pref("font.size.fixed.zh-CN", 16);
  980.  
  981. pref("font.size.variable.zh-TW", 16);
  982. pref("font.size.fixed.zh-TW", 16);
  983.  
  984. pref("font.size.variable.zh-HK", 16);
  985. pref("font.size.fixed.zh-HK", 16);
  986.  
  987. pref("font.size.nav4rounding", false);
  988.  
  989. pref("ui.key.menuAccessKeyFocuses", true);
  990.  
  991. // override double-click word selection behavior.
  992. pref("layout.word_select.eat_space_to_next_word", true);
  993.  
  994. // print_extra_margin enables platforms to specify an extra gap or margin
  995. // around the content of the page for Print Preview only
  996. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  997.  
  998. // This indicates whether it should use the native dialog or the XP Dialog
  999. pref("print.use_native_print_dialog", true);
  1000.  
  1001. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  1002. // Note: Does not scan if security.enable_java is not true
  1003. pref("plugin.scan.SunJRE", "1.3");
  1004.  
  1005. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  1006. pref("plugin.scan.Acrobat", "5.0");
  1007.  
  1008. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  1009. pref("plugin.scan.Quicktime", "5.0");
  1010.  
  1011. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  1012. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  1013.  
  1014. // Locate plugins by the directories specified in the Windows registry for PLIDs
  1015. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  1016. pref("plugin.scan.plid.all", true);
  1017.  
  1018. // Controls the scanning of the Navigator 4.x directory for plugins
  1019. // When pref is missing, the default is to pickup popular plugins such as
  1020. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  1021. // will be picked up and if set to false the scan will not happen at all
  1022. //pref("plugin.scan.4xPluginFolder", false);
  1023.  
  1024. // Help Windows NT, 2000, and XP dialup a RAS connection
  1025. // when a network address is unreachable.
  1026. pref("network.autodial-helper.enabled", true);
  1027.  
  1028. // Pref to control whether we set ddeexec subkeys for the http
  1029. // Internet shortcut protocol if we are handling it.  These
  1030. // subkeys will be set only while we are running (to avoid the
  1031. // problem of Windows showing an alert when it tries to use DDE
  1032. // and we're not already running).
  1033. pref("advanced.system.supportDDEExec", true);
  1034.  
  1035. // Use CP932 compatible map for JIS X 0208
  1036. pref("intl.jis0208.map", "CP932");
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.